home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Internet
/
Collection of Internet.iso
/
msdos
/
wattcp
/
unzipped
/
bootp
/
isspace.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1984-09-28
|
140 b
|
10 lines
/* returns true if chararcter is a blank,tab or newline
*/
isspace(cc)
char cc;
{
return (cc==' ' || cc=='\t' || cc=='\n');
}